LCASE$ Function ---------------------------------------------------------------------------- Action Returns a string with all letters in lowercase. Syntax LCASE$ ( stringexpression$) Remarks The LCASE$ function takes a string variable, string constant, or string expression as its single argument. LCASE$ works with both variable- and fixed-length strings. LCASE$ and UCASE$ are helpful in making string comparisons that are not case sensitive. See Also UCASE$ Example The following example converts uppercase characters in a string to lowercase. CLS ' Clear screen. READ Word$ PRINT LCASE$(Word$); DATA "THIS IS THE STRING in lower case." Outputthis is the string in lower case.